home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / makefiles / mk.site.default < prev    next >
Text File  |  1993-12-07  |  3KB  |  75 lines

  1. # Local definitions.
  2.  
  3. # GEOMROOT is the absolute pathname of the directory where you've placed
  4. # the Geomview source; a typical value might be /usr/local/src/Geomview.
  5. # Its setting is built into the "geomview" shell script and (on the NeXT)
  6. # into Geomview.app/CONFIG.gv.  It's used for finding the the following items:
  7. #   - the example data files, living at ${GEOMROOT}/data/{geom,groups,...}/*
  8. #   - the main geomview startup script, ${GEOMROOT}/data/.geomview
  9. #   - the directory of external modules, ${GEOMVIEW}/modules/${MACHTYPE}/*
  10. #
  11. # You *must* edit this file to set the value of GEOMROOT before  
  12. # running 'make install'.
  13.  
  14. GEOMROOT=
  15.  
  16. # NOTE: The variable MACHTYPE has already been set by the time this file
  17. # is read; it's the type of computer we're on ("sgi" or "next").
  18. # You can use it in defining things here, but don't redefine it.
  19.  
  20. # BINDIR should be the pathname of the directory into which executable
  21. # programs are to be installed.  This should be a directory that is on
  22. # users' $path, like /usr/local/bin.
  23.  
  24. BINDIR = /usr/local/bin
  25.  
  26. # MMAPACKAGEDIR should be the pathname of the directory into which the
  27. # Mathematica packages (OOGL.m, etc.) are to be installed.  This should be some
  28. # directory that is on Mathematica's search path ($Path variable).
  29. # The "math" shell script defines the directories in $Path; on the NeXT,
  30. # they include /LocalApps/Mathematica.app/Library/Mathematica/Packages,
  31. # and on the Iris, <math-installation-dir>/Packages.
  32. # $Path also includes the user's home directory; if only one person will
  33. # use the mathematica-geomview connection, you could set MMAPACKAGEDIR
  34. # to that user's home directory.
  35. # If you don't have Mathematica, leave MMAPACKAGEDIR set to ${GEOM}/mathematica.
  36.  
  37. MMAPACKAGEDIR = ${GEOM}/mathematica
  38.  
  39. # MANDIR should be the pathname of the directory into which Unix-style
  40. # manual pages are to be installed.  The man pages will actually go into
  41. # subdirectories of this directory with names like "man1", "cat1", etc.
  42.  
  43. MANDIR = /usr/local/man
  44.  
  45. # NOTE:
  46. #
  47. # BINDIR, MMAPACKAGEDIR, and MANDIR are used by "make install" and not
  48. # by "make all" or "make".  In all cases, the directory (and all
  49. # necessary parent directories) is created if it does not yet exist.
  50. # These must have values in order for "make install" to work.  If you
  51. # want the keep the installation completely within the source tree,
  52. # use the following values:
  53. #    BINDIR = ${GEOMROOT}/bin/${MACHTYPE}
  54. #    MMAPACKAGEDIR = ${GEOMROOT}/mathematica
  55. #    MANDIR = ${GEOMROOT}/man
  56. # You should then arrange for ${GEOMROOT}/bin/${MACHTYPE} to be on
  57. # users' $path and for ${GEOMROOT}/mathematica to be on the Mathematica
  58. # search path ($Path variable).
  59.  
  60. #################################################################
  61. #
  62. # You can skip the rest of this file if you are not installing
  63. # on a NeXT.
  64.  
  65. # For NeXT installations, APPDIR should be the pathname of the
  66. # directory into which the Geomview.app application will be installed.
  67. # "make install" will install it there.  This is also used by other
  68. # scripts, in particular, the "geomview" script that is installed in
  69. # BINDIR, so if you move Geomview.app you should update APPDIR here
  70. # and re-install.
  71.  
  72. APPDIR = /LocalApps
  73.